home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / sharewar / webscrip / webscripter4s.exe / {app} / Includes / jsStatusbar.ob < prev    next >
Encoding:
Text File  |  2001-07-11  |  468 b   |  25 lines

  1. //begin_lib <!-- Begin External JavaScript -- DO NOT REMOVE THIS LINE -->
  2.  
  3. function jsStatusbar(){
  4. this.Items = new Array();
  5. this.Add = st_Add;
  6. this.Show = st_Show;
  7. this.Blank = st_Blank;
  8. }
  9.  
  10. function st_Add(name,text){
  11. this.Items[name]=text;
  12. }
  13.  
  14. function st_Show(name){
  15. window.status=this.Items[name];
  16. return true;
  17. }
  18.  
  19. function st_Blank(){
  20. window.status = "";
  21. return true;
  22. }
  23.  
  24. //end_lib <!-- End External JavaScript -- DO NOT REMOVE THIS LINE -->
  25.